home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2009 December / maximum-cd-2009-12.iso / DiscContents / audacity-win-unicode-1.3.8.exe / {app} / help / manual / mediawiki_common.css < prev    next >
Encoding:
Cascading Style Sheet File  |  2009-07-13  |  2.4 KB  |  118 lines

  1. /** CSS placed here will be applied to all skins */
  2.  
  3. /* Audacity stuff */
  4.  
  5.        .menu {
  6.           font-weight: bold;
  7.           background: #ffffcc;
  8.         }
  9.  
  10.         .key {
  11.           font-weight: bold;
  12.           font-style:italic;
  13.           background: #dddddd;
  14.         }
  15.  
  16.         .editornote {
  17.           border: 1px solid black;
  18.           padding-left: 12px;
  19.           padding-right: 12px;
  20.           margin: 24px;
  21.           background: #ffeecc;
  22.         }
  23.  
  24.         .note {
  25.           border: 1px solid black;
  26.           padding-left: 12px;
  27.           padding-right: 12px;
  28.           margin: 24px;
  29.           background: #ddeeff;
  30.         }
  31.  
  32.         .intro {
  33.           border: 1px solid black;
  34.           padding-left: 12px;
  35.           padding-right: 12px;
  36.           margin: 24px;
  37.           background: #ddffee;
  38.         }
  39.  
  40.         .alert {
  41.           border: 1px solid #cc0000;
  42.           padding-left: 12px;
  43.           padding-right: 12px;
  44.           margin: 24px;
  45.           background: #ffcccc;
  46.         }
  47.  
  48.         .transtitle {
  49.           font-size: 188%;
  50.           border-bottom:1px solid #AAAAAA;
  51.           color:green;
  52.           margin:0;
  53.           padding-bottom:0.17em;
  54.           padding-top:0.5em;
  55.         }
  56.         
  57.  
  58.    table.wikitable {
  59.       margin-left: auto;
  60.       margin-right: auto;
  61.       background:#F9F9F9;
  62.       border:1px #AAA solid;
  63.       border-collapse:collapse;
  64.       }
  65.  
  66.    table.wikitable th, table.wikitable td {
  67.       border:1px #AAA solid;
  68.       padding:0.4em;
  69.       text-align:center;
  70.       }
  71.  
  72.    table.wikitable th {
  73.       background:#F2F2F2;
  74.       text-align:center;
  75.       }
  76.  
  77.    table.wikitable caption {
  78.       margin-left:inherit;
  79.       margin-right:inherit;
  80.       }
  81.  
  82.  
  83.  
  84. /* Original skin */
  85.  
  86.  
  87. /* wikitable/prettytable class for skinning normal tables */
  88. table.wikitable,
  89. table.prettytable {
  90.     margin: 1em 1em 1em 0;
  91.     background: #f9f9f9;
  92.     border: none;
  93.     border-collapse: collapse;
  94. }
  95.  
  96. table.wikitable th, table.wikitable td,
  97. table.prettytable th, table.prettytable td {
  98.     border: none;
  99.     padding: 0.2em;
  100. }
  101.  
  102. table.wikitable th,
  103. table.prettytable th {
  104.     background: #add8e6;
  105.     text-align: center;
  106. }
  107.  
  108. table.wikitable caption,
  109. table.prettytable caption {
  110.     margin-left: inherit;
  111.     margin-right: inherit;
  112.     font-weight: bold;
  113. }
  114.  
  115. table.prettytable code,
  116. table.wikitable code {
  117.     background-color: transparent;
  118. }